/* =========================
   SECCION TALENTOS
========================= */

.container-talentos{

    width:100%;

    padding:100px 5%;

    background:#f5f3ef;
}

/* =========================
   TITULO
========================= */

.titulo-talentos{

    text-align:center;

    margin-bottom:70px;
}

.titulo-talentos h2{

    font-size:4rem;

    font-weight:300;

    letter-spacing:2px;

    margin-bottom:20px;

    color:#111;

    font-family:serif;
}

.titulo-talentos p{

    max-width:750px;

    margin:auto;

    line-height:1.9;

    color:#666;
}

/* =========================
   GRID
========================= */

.grid-talentos{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;
}

/* =========================
   CARD
========================= */

.card-talento{

    position:relative;

    overflow:hidden;

    cursor:pointer;

    height:500px;
}

.card-talento img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .6s ease;
}

/* =========================
   OVERLAY
========================= */

.overlay-talento{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.05)
    );

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:30px;

    opacity:0;

    transition:.4s ease;
}

.overlay-talento h3{

    color:#fff;

    font-size:1.4rem;

    font-weight:500;

    margin-bottom:8px;
}

.overlay-talento span{

    color:#d9d9d9;

    font-size:.95rem;

    letter-spacing:1px;
}

/* =========================
   HOVER
========================= */

.card-talento:hover img{

    transform:scale(1.08);
}

.card-talento:hover .overlay-talento{

    opacity:1;
}

/* =========================
   TABLET
========================= */

@media(max-width:1200px){

    .grid-talentos{

        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:992px){

    .grid-talentos{

        grid-template-columns:repeat(2,1fr);
    }

    .titulo-talentos h2{

        font-size:3rem;
    }

    .card-talento{

        height:420px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .container-talentos{

        padding:70px 6%;
    }

    .grid-talentos{

        grid-template-columns:1fr;
    }

    .titulo-talentos{

        margin-bottom:50px;
    }

    .titulo-talentos h2{

        font-size:2.5rem;
    }

    .card-talento{

        height:450px;
    }
}

/* =========================
   MOBILE PEQUEÑO
========================= */

@media(max-width:480px){

    .titulo-talentos h2{

        font-size:2rem;
    }

    .titulo-talentos p{

        font-size:.9rem;

        line-height:1.7;
    }

    .card-talento{

        height:380px;
    }

    .overlay-talento{

        opacity:1;
    }
}